:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --nasdaq-green: #00ff88;
    --nasdaq-red: #ff4444;
    --nasdaq-blue: #00aaff;
    --nasdaq-yellow: #ffaa00;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --border-color: #333333;
    --success-green: #00ff88;
    --danger-red: #ff4444;
    --warning-orange: #ffaa00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    background-image: linear-gradient(
            135deg,
            #0a0a0a 0%,
            #1a1a1a 50%,
            #0a0a0a 100%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(0, 255, 136, 0.05) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0, 170, 255, 0.05) 0%,
            transparent 30%
        );
    font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 15s infinite linear;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            rgba(0, 243, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300f3ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.free-community-bar {
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    color: var(--primary-dark);
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    }

    50% {
        box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 2;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo-icon {
    font-size: 28px;
    color: var(--nasdaq-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-align: center;
}

/* NASDAQ Style Real-time Data Ticker */
.ticker-container {
    background: var(--secondary-dark);
    border-top: 2px solid var(--nasdaq-green);
    border-bottom: 2px solid var(--nasdaq-green);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-bottom: 20px;
}

.ticker-content {
    display: inline-block;
    animation: scroll-left 60s linear infinite;
    color: var(--text-light);
    font-family: "Courier New", monospace;
    font-size: 14px;
    font-weight: 600;
}

.ticker-item {
    display: inline-block;
    margin-right: 40px;
    padding: 0 10px;
}

.ticker-symbol {
    color: var(--nasdaq-green);
    font-weight: bold;
}

.ticker-price {
    color: var(--text-light);
}

.ticker-change {
    margin-left: 8px;
}

.ticker-change.positive {
    color: var(--nasdaq-green);
}

.ticker-change.negative {
    color: var(--nasdaq-red);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.nav-links {
    display: none;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.month-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--nasdaq-green);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: inline-block;
    font-family: "Courier New", monospace;
    cursor: default;
    user-select: none;
}

.month-badge:before {
    content: "● ";
    margin-right: 4px;
    font-size: 10px;
}

@keyframes button-pulse {
    0%,
    100% {
        box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-align: center;
    display: block;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--nasdaq-blue);
    font-weight: 600;
    text-align: center;
}

.hero-description {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.5;
    opacity: 0.9;
    text-align: center;
    color: var(--text-light);
}

/* AI Diagnosis Section Enhanced */
.ai-diagnosis-section {
    background: var(--glass-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid var(--nasdaq-green);
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.ai-diagnosis-section:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(
        45deg,
        rgba(0, 255, 136, 0.1),
        rgba(0, 170, 255, 0.1)
    );
    z-index: -1;
    border-radius: 16px;
}

.diagnosis-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--nasdaq-green);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.neural-input-field {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--nasdaq-green);
    border-radius: 8px;
    color: var(--text-light);
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    font-family: "Courier New", monospace;
}

.neural-input-field:focus {
    border-color: var(--nasdaq-blue);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    background: rgba(10, 10, 10, 0.95);
}

.neural-input-field::placeholder {
    color: rgba(224, 231, 255, 0.6);
}

#errorMessage {
    color: #ff4d4d;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.diagnosis-button {
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    color: var(--primary-dark);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.25);
    font-family: "Courier New", monospace;
    animation: button-pulse 2s infinite;
}

.diagnosis-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.diagnosis-button:hover:before {
    left: 100%;
}

.diagnosis-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 255, 136, 0.4);
}

/* Stock Cards Layout: Mobile 2x4 */
.market-updates-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
}

.update-card {
    background: var(--glass-bg);
    border-radius: 8px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}

.update-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
}

.update-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 255, 136, 0.15);
    border: 1px solid var(--nasdaq-green);
}

.update-title {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--nasdaq-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.update-title i {
    font-size: 1.2rem;
}

.stocks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.stock-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-family: "Courier New", monospace;
}

.stock-tag:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 255, 136, 0.2);
}

.gainers .stock-tag {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--nasdaq-green);
    color: var(--nasdaq-green);
}

.breakout .stock-tag {
    background: rgba(255, 170, 0, 0.15);
    border-color: var(--nasdaq-yellow);
    color: var(--nasdaq-yellow);
}

.volume-leaders .stock-tag {
    background: rgba(255, 68, 68, 0.15);
    border-color: var(--nasdaq-red);
    color: var(--nasdaq-red);
}

/* Risk Warning Styles */
.risk-disclaimer {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(224, 231, 255, 0.8);
    text-align: center;
    width: 100%;
}

.legal-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(224, 231, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--neon-blue);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.neural-progress-container {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.progress-status-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--nasdaq-green);
    font-weight: 600;
}

.quantum-progress-track {
    height: 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.progress-neural-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    border-radius: 10px;
    width: 0;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-neural-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: progressGlow 1.5s infinite;
}

.analysis-stage-indicator {
    font-size: 1rem;
    color: rgba(224, 231, 255, 0.8);
}

.result-modal-frame {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.result-primary-message {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--nasdaq-green);
    font-weight: 700;
}

.result-secondary-note {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: rgba(224, 231, 255, 0.8);
}

.whatsapp-redirect-button {
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}

.whatsapp-redirect-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes progressGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .ticker-container {
        font-size: 12px;
        padding: 6px 0;
    }

    .ticker-item {
        margin-right: 20px;
        padding: 0 5px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .update-card {
        min-height: 100px;
        padding: 12px;
    }

    .stock-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .free-community-bar {
        font-size: 18px;
        padding: 15px;
    }

    .container {
        padding: 20px;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .logo {
        margin-bottom: 0;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-link {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 5px 0;
    }

    .nav-link:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--neon-blue);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--neon-blue);
    }

    .nav-link:hover:after {
        width: 100%;
    }

    .hero-section {
        margin-bottom: 60px;
    }

    .month-badge {
        padding: 8px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .market-updates-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
        max-width: 1000px;
    }

    .update-card {
        border-radius: 16px;
        padding: 20px;
        min-height: 150px;
    }

    .update-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .ai-diagnosis-section {
        padding: 40px;
        margin-bottom: 40px;
    }

    .diagnosis-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .input-group {
        margin-bottom: 30px;
    }

    .neural-input-field {
        padding: 18px 20px;
    }

    .diagnosis-button {
        padding: 18px 30px;
        font-size: 18px;
    }

    .risk-disclaimer {
        padding: 15px;
        margin-bottom: 30px;
        font-size: 0.9rem;
    }

    .legal-section {
        gap: 30px;
        margin-top: 40px;
    }

    .legal-link {
        font-size: 0.9rem;
    }
}

/* Policy Pages Styles */
.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.policy-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.policy-logo-icon {
    font-size: 28px;
    color: var(--nasdaq-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.policy-logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.policy-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.policy-section {
    margin: 25px 0;
    padding: 25px;
    background: var(--glass-bg);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.policy-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
}

.policy-section h2 {
    color: var(--nasdaq-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-section h3 {
    color: var(--nasdaq-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-section ul,
.policy-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--glass-bg);
    border-radius: 8px;
    overflow: hidden;
}

.policy-table th,
.policy-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.policy-table th {
    background: rgba(0, 255, 136, 0.1);
    color: var(--nasdaq-green);
    font-weight: 600;
}

.policy-table td {
    color: var(--text-light);
}

.policy-footer-links {
    margin-top: 40px;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.policy-footer-link {
    margin: 0 15px;
    color: var(--nasdaq-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-footer-link:hover {
    color: var(--nasdaq-blue);
}

.policy-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--nasdaq-green), var(--nasdaq-blue));
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.policy-back-button:hover {
    transform: translateY(-2px);
}

.policy-date-info {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.policy-date-info p {
    margin: 0;
    color: var(--nasdaq-green);
    font-weight: 600;
}

/* Policy Pages Mobile Optimization */
@media (max-width: 768px) {
    .policy-container {
        padding: 15px;
    }

    .policy-page-title {
        font-size: 2rem;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-table {
        font-size: 0.9rem;
    }

    .policy-table th,
    .policy-table td {
        padding: 10px;
    }
}
